diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fc6fdce --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM node:18 +LABEL org.opencontainers.image.source https://github.com/pb-coding/skyjo-fe + +WORKDIR /usr/src/app + +COPY package*.json ./ + +RUN npm install + +COPY . . + +RUN npm run build + +EXPOSE 3000 + +CMD ["npm", "run", "preview"] \ No newline at end of file