Private-Google / Dockerfile
KingNish's picture
Update Dockerfile
8b9e5fe verified
raw
history blame
236 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN apt-get update && \
apt-get install -y chromium --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
RUN pip install Flask eel requests
EXPOSE 8080
CMD ["python", "app.py"]