Skip to content

Commit

Permalink
install flask
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaAburaneh committed Jan 22, 2024
1 parent 7f7357d commit 11dc6b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/both/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Use a base image with Python
FROM python:3.8-slim

# Install cron and other system dependencies
RUN apt-get update && apt-get install -y cron

# Install your Python dependencies
RUN pip install -U gspread oauth2client pyairtable
# Install Flask and your other Python dependencies
RUN pip install -U Flask gspread oauth2client pyairtable

# Copy and set permissions for your scripts and crontab file
COPY suggest.py /app/
Expand Down

0 comments on commit 11dc6b5

Please sign in to comment.