Updated favicons

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2022-05-01 10:16:25 +01:00
parent 2bf4389d37
commit c4dc1d26d2
55 changed files with 49 additions and 42 deletions

View File

@@ -1,9 +1,14 @@
FROM node:12-alpine
FROM node:16-alpine
RUN apk update && apk add python3 make gcc g++
WORKDIR /app
ADD package.json .
RUN npm install
ADD . .
RUN npm install
EXPOSE 8000
CMD ["npm", "start"]