Skip to content
Snippets Groups Projects
Commit cfb6654e authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

Add new file - dockerfile for toy project

parent 5fb2e649
No related branches found
No related tags found
No related merge requests found
# This file is a template, and might need editing before it works on your project.
FROM python:3.6-alpine
# Edit with mysql-client, postgresql-client, sqlite3, etc. for your needs.
# Or delete entirely if not needed.
RUN apk --no-cache add postgresql-client
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /usr/src/app
EXPOSE 8080
#CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
# For some other command
CMD ["python", "main.py"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment