Skip to content
This repository has been archived by the owner on Jun 20, 2019. It is now read-only.

Latest commit

 

History

History
17 lines (11 loc) · 474 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 474 Bytes

docker-base

PySlackers common docker image, based on Python 3.6 and Alpine Linux.

This pretty much adds some basic compiler support and tini for an init system

Usage

You should only need to install your dependencies and define your CMD

FROM pyslackers/python:3.6-alpine-${VERSION}
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD python app.py