edraft
a9f763c649
All checks were successful
Build on push / build-api (push) Successful in 6s
Build on push / build-redirector (push) Successful in 28s
Build on push / build-web (push) Successful in 48s
Build dev on push / build-redirector (push) Successful in 7s
Build dev on push / build-api (push) Successful in 8s
Build dev on push / build-web (push) Successful in 48s
27 lines
483 B
Plaintext
27 lines
483 B
Plaintext
# syntax=docker/dockerfile:1
|
|
FROM python:3.12.8-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./src/api/ ./api
|
|
COPY ./src/core/ ./core
|
|
COPY ./src/data/ ./data
|
|
COPY ./src/service/ ./service
|
|
|
|
COPY ./src/static/ ./static
|
|
COPY ./src/templates/ ./templates
|
|
|
|
COPY ./src/redirector.py .
|
|
COPY ./src/redirector .
|
|
|
|
COPY ./requirements.txt .
|
|
|
|
RUN python -m pip install --upgrade pip
|
|
RUN python -m pip install -r requirements.txt
|
|
|
|
RUN apk update
|
|
RUN apk add bash
|
|
RUN apk add nano
|
|
|
|
CMD [ "bash", "/app/redirector"]
|