Skip to content

Instantly share code, notes, and snippets.

@souravs17031999
Created April 24, 2022 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save souravs17031999/85f699246ac3765e31f7f626ac4d73f7 to your computer and use it in GitHub Desktop.
Save souravs17031999/85f699246ac3765e31f7f626ac4d73f7 to your computer and use it in GitHub Desktop.
# syntax=docker/dockerfile:1
FROM python:3.8-alpine
WORKDIR /app
COPY requirements.txt requirements.txt
RUN python3 -m pip install -r requirements.txt --no-cache-dir
COPY . .
ENV AMAZON_API_KEY=""
ENV TWILIO_ACCOUNT_SID=""
ENV TWILIO_AUTH_TOKEN=""
ENV TWILIO_PHONE_SENDER=""
ENV TWILIO_PHONE_RECEIVER=""
ENV AMAZON_PRODUCT_ID=""
ENV AMAZON_TRIGGER_HIGH_LIMIT=""
ENV AMAZON_TRIGGER_LOW_LIMIT=""
ENV CRON_INTERVAL=""
ENTRYPOINT ["sh", "/app/docker-entrypoint.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment