HiddenEye-Legacy/Dockerfile

15 lines
402 B
Docker
Raw Normal View History

FROM debian:10
LABEL MAINTAINER="Equinockx moisestapia741@gmail.com"
WORKDIR /home/
COPY . /home/
2020-08-11 22:36:05 +08:00
RUN apt-get update -y --no-install-recommends && \
2020-07-31 03:38:24 +08:00
apt-get install -y --no-install-recommends python3.7 && \
2020-07-27 02:42:34 +08:00
apt-get install -y python3-pip && \
2020-07-27 06:40:09 +08:00
apt-get install --no-install-recommends -y php && \
2020-07-27 03:07:04 +08:00
apt-get clean && \
2020-07-27 02:42:34 +08:00
rm -rf /var/lib/apt/lists/*
RUN pip3 install -r requirements.txt