traefik-helper/Dockerfile
Liam 04dc28efeb
All checks were successful
Publish Docker Image / docker (push) Successful in 1m13s
is this even needed?
2024-01-13 20:15:31 +00:00

37 lines
987 B
Docker

# Step 1: Use an official Python runtime as a parent image
FROM python:3.10-slim AS builder
# Install Docker
RUN apt update
RUN apt install curl -y
RUN curl -sSL https://s.fascinated.cc/s/install-docker | bash
# Step 2: Create the final image
FROM python:3.10-slim
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1
# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Copy Docker binaries from the builder stage
COPY --from=builder /usr/bin/docker /usr/bin/docker
#COPY --from=builder /usr/lib/docker /usr/lib/docker
# Set an environment variable with the path to the config file
ENV CONFIG_FILE=/app/config.yml
# Specify the command to run on container start
CMD ["python", "src/manage.py"]