gg / Dockerfile
osangni's picture
Upload 16 files
37fa5ce
raw
history blame
190 Bytes
FROM mysterysd/wzmlx:latest
WORKDIR /usr/src/app
RUN chmod 777 /usr/src/app
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
CMD ["bash", "start.sh"]