imagegpt / Dockerfile
zliang's picture
Update Dockerfile
fbb28b7 verified
raw
history blame contribute delete
No virus
963 Bytes
# Use Python 3.9 image as the base image
FROM python:3.9
# Set the working directory in the container to /code
WORKDIR /code
# Copy the requirements.txt file into the container at /code
COPY ./requirements.txt /code/requirements.txt
# Install the Python dependencies
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Copy the rest of your application's code into the container
COPY . .
# ...
# Initialize a Git repository and set up remotes with secrets
# Mount secrets for each remote
RUN --mount=type=secret,id=public_key,mode=0444,required=true git init && \
git remote add remote1 $(cat /run/secrets/public_key)
RUN --mount=type=secret,id=private_key,mode=0444,required=true git remote add remote2 $(cat /run/secrets/private_key)
RUN --mount=type=secret,id=url_endpoint,mode=0444,required=true git remote add remote3 $(cat /run/secrets/url_endpoint)
# ...
# Specify the command to run on container start
CMD ["python", "app.py"]