test14
Some checks failed
Build Docker / deploy (push) Successful in 46s
Build Docker / build (push) Failing after 28s

This commit is contained in:
2026-03-06 21:41:35 +03:00
parent 28fe9c29df
commit edde30b539
2 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
FROM caddy:latest FROM caddy:latest
COPY conf/Caddyfile /etc/caddy/Caddyfile COPY ./docker/caddy/conf/Caddyfile /etc/caddy/Caddyfile
COPY ./../../server/frontend /srv COPY ./server/frontend /srv

View File

@@ -1,6 +1,6 @@
FROM python:3.13-slim FROM python:3.13-slim
WORKDIR /home/backend WORKDIR /home/backend
COPY ../ /home/backend COPY ./ /home/backend
RUN python -m pip install --upgrade pip \ RUN python -m pip install --upgrade pip \
&& python -m pip install -r requirements.txt && python -m pip install -r requirements.txt
RUN chmod +x ./docker/start.sh RUN chmod +x ./docker/start.sh