Skip to content

Instantly share code, notes, and snippets.

View isa's full-sized avatar
☀️
Working, whatd'ya think..

Isa Goksu isa

☀️
Working, whatd'ya think..
View GitHub Profile
@isa
isa / Dockerfile
Created October 12, 2020 15:00 — forked from davidcarboni/Dockerfile
Flask in Docker - productionised with simplicity
FROM python
# From the python:onbuild image
# For discussion of onbuild variant images see: https://hub.docker.com/_/python/
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN pip install --no-cache-dir -r requirements.txt
# Install uWSGI
RUN pip install uwsgi