This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kingdombattles/Dockerfile
T

9 lines
180 B
Docker

FROM node:15
WORKDIR "/app"
COPY package*.json ./
COPY . /app
RUN npm install --production
EXPOSE 4000
ENTRYPOINT ["bash", "-c"]
CMD ["npm run webpack-production && npm run node"]