15 lines
275 B
Docker
15 lines
275 B
Docker
FROM codex:latest
|
|
|
|
RUN apt update \
|
|
&& apt install -y --no-install-recommends git
|
|
&& apt clean \
|
|
&& rm -rf /var/lib/apt/lists/*s
|
|
|
|
COPY ./app /app
|
|
RUN cd /app && npm install
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|