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
mechaimmensewarfare.com/Dockerfile
T
2021-03-08 00:31:37 +11:00

10 lines
155 B
Docker

FROM node:15.8
WORKDIR "/app"
COPY package*.json ./
RUN npm install
RUN apt-get update
COPY . /app
EXPOSE 3000
ENTRYPOINT ["bash", "-c"]
CMD ["npm start"]