avery-game-proto/Dockerfile

13 lines
166 B
Docker

FROM node:22-slim
LABEL authors="codedsakura"
WORKDIR /app
COPY . .
RUN yarn install && touch ./out.txt
ENV PORT=80
ENTRYPOINT ["yarn", "run", "start"]
EXPOSE 80