avery-game-proto/Dockerfile

13 lines
147 B
Docker
Raw 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:12:59 +03:00
RUN yarn install
2024-10-18 20:55:55 +03:00
ENV PORT=80
ENTRYPOINT ["yarn", "run", "start"]
EXPOSE 80