docker file install build-essential

pull/27/head
Cullen 2023-08-28 13:28:47 -05:00
parent caa0b45bd1
commit cfba0db994
2 changed files with 9 additions and 3 deletions

3
.docker/config.json Normal file
View File

@ -0,0 +1,3 @@
{
"experimental": "enabled"
}

View File

@ -4,9 +4,12 @@ WORKDIR /app
COPY . /app COPY . /app
RUN apt-get update RUN apt-get update && \
RUN apt-get install -y jq apt-get install -y jq build-essential && \
RUN pip install --no-cache-dir -r requirements.txt pip install --no-cache-dir -r requirements.txt && \
apt-get remove -y build-essential && \
apt-get autoremove -y && \
apt-get clean
EXPOSE 8000 EXPOSE 8000