mirror of
https://github.com/PretendoNetwork/juxtaposition-ui.git
synced 2026-03-21 17:34:24 -05:00
* 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
16 lines
250 B
Docker
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"]
|