dockerfile-fix

This commit is contained in:
Tony Rewin 2023-10-05 22:19:20 +03:00
parent b8e6f7bb5a
commit 458823b894

View File

@ -4,6 +4,6 @@ WORKDIR /app
EXPOSE 8080 EXPOSE 8080
ADD nginx.conf.sigil ./ ADD nginx.conf.sigil ./
COPY requirements.txt . COPY requirements.txt .
RUN apt update && apt install -y build-essentials RUN apt update && apt install -y build-essential
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
COPY . . COPY . .