13 lines
218 B
Docker
13 lines
218 B
Docker
FROM node:20-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN apk add --no-cache git bash
|
|
|
|
COPY entrypoint.sh /usr/src/app/entrypoint.sh
|
|
RUN chmod +x /usr/src/app/entrypoint.sh
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/usr/src/app/entrypoint.sh"]
|