9 lines
256 B
Docker
9 lines
256 B
Docker
FROM node:20-alpine
|
|
RUN apk add --no-cache git
|
|
WORKDIR /app
|
|
RUN git clone https://git.dadehard.ru/kalugin66/gia-gve-certificates.git .
|
|
COPY docker-entrypoint.sh /
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
CMD ["npm", "start"]
|