File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
{{cookiecutter.app_slug}} Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.6.5
1+ FROM python:3.6.5-slim
22
3- # install environment dependencies
4- RUN apt-get update -yqq \
5- && apt-get install -yqq --no-install-recommends \
6- netcat \
7- && apt-get -q clean
3+ # install netcat
4+ RUN apt-get update \
5+ && apt-get -y install netcat \
6+ && apt-get clean
87
98# set working directory
109RUN mkdir -p /usr/src/app
Original file line number Diff line number Diff line change 1- FROM postgres
1+ FROM postgres:10.4-alpine
22
33# run create.sql on init
44ADD create.sql /docker-entrypoint-initdb.d
Original file line number Diff line number Diff line change 22
33Use this guide if you want to use Docker in your project.
44
5- > Built with Docker v18.03.0 -ce.
5+ > Built with Docker v18.03.1 -ce.
66
77## Getting Started
88
You can’t perform that action at this time.
0 commit comments