avery-game-proto/Dockerfile

13 lines
166 B
Docker
Raw Permalink Normal View History

2024-10-18 20:55:55 +03:00
FROM node:22-slim
LABEL authors="codedsakura"
WORKDIR /app
COPY . .
2024-10-18 21:25:26 +03:00
RUN yarn install && touch ./out.txt
2024-10-18 20:55:55 +03:00
ENV PORT=80
ENTRYPOINT ["yarn", "run", "start"]
EXPOSE 80