mirror of https://github.com/Bunsly/JobSpy
docker file install build-essential
parent
caa0b45bd1
commit
cfba0db994
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"experimental": "enabled"
|
||||||
|
}
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue