gold eggs backend
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
This commit is contained in:
23
Dockerfile
Executable file
23
Dockerfile
Executable file
@@ -0,0 +1,23 @@
|
||||
FROM jscorptech/django:latest
|
||||
|
||||
ARG SCRIPT="entrypoint.sh"
|
||||
ENV SCRIPT=$SCRIPT
|
||||
ENV PROMETHEUS_MULTIPROC_DIR=/tmp/prometheus_metrics
|
||||
|
||||
WORKDIR /code
|
||||
|
||||
COPY requirements.txt /code/requirements.txt
|
||||
|
||||
RUN uv pip install -r requirements.txt
|
||||
|
||||
COPY ./ /code
|
||||
|
||||
COPY ./scripts/$SCRIPT /code/$SCRIPT
|
||||
|
||||
RUN chmod +x /code/scripts/$SCRIPT
|
||||
|
||||
RUN mkdir -p /tmp/prometheus_metrics
|
||||
|
||||
CMD sh /code/scripts/$SCRIPT
|
||||
|
||||
|
||||
Reference in New Issue
Block a user