juxtaposition-ui/Dockerfile
mrjvs 8c1f23e5c2
Docker (#24)
* removed old dockerfile

* add all docker related files

* add certs folder to dockerfiles

* move config.json to root of repo

* update missed import

* remove old dockerfile

* add logs to ignore files
2022-05-08 10:15:19 -05:00

16 lines
250 B
Docker

FROM node:18-alpine
RUN apk add --no-cache python3 make gcc g++
WORKDIR /app
COPY "docker/entrypoint.sh" ./
COPY package*.json ./
RUN npm install
COPY . ./
VOLUME [ "/app/config.json", "/app/certs" ]
CMD ["sh", "entrypoint.sh"]