diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..138072b --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file