dach/Dockerfile

10 lines
136 B
Docker
Raw Permalink Normal View History

2023-10-26 12:45:08 +03:00
FROM node:18
WORKDIR /usr/share/dach
COPY package*.json ./
COPY . .
RUN npm install
EXPOSE 1337
2023-10-27 22:21:25 +03:00
ENTRYPOINT ["./docker-entrypoint.sh"]