adding Dockerfile

This commit is contained in:
2022-12-15 20:44:44 -03:00
parent 80d2114b9a
commit 19586b1575

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM alpine:latest
RUN apk add --update nodejs npm
RUN npm install --global yarn
COPY [".", "/usr/src"]
WORKDIR "/usr/src"
RUN yarn
EXPOSE 3000
CMD ["yarn", "start"]