Files
captcha_aggregator/Dockerfile
2025-04-30 18:31:21 +03:00

8 lines
133 B
Docker

FROM node:22-bullseye
ARG APP_PORT
ENV APP_PORT $APP_PORT
COPY . .
RUN npm i
EXPOSE $APP_PORT
ENTRYPOINT ["bash", "./entrypoint.sh"]