Skip to content
Snippets Groups Projects
Commit 4cff543e authored by Pierre Dittgen's avatar Pierre Dittgen
Browse files

Add docker file

parent fca4ebdd
No related branches found
No related tags found
No related merge requests found
FROM python:3.8
ENV PIP_NO_CACHE_DIR 1
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD mkdir -p /source-data && mkdir -p /json-data && python download.py /source-data && python convert.py /source-data /json-data
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment