pokeapi/Dockerfile

31 lines
1.1 KiB
Docker

# Build the app on top of Ubuntu
from ubuntu
# Patch and Install Dependencies
RUN apt-get -y update && apt-get -y upgrade
RUN apt-get -y install git python-dev make python-pip libpq-dev
RUN apt-get -y install postgresql postgresql-contrib
CMD mkdir -p /app && chown -R postgres:postgres /app
# Add the application code to the image
ADD . /app/
# Set a working directory
WORKDIR /app/
# Build the application
RUN pip install -r requirements.txt --upgrade
# Start postgres database and use it while it is running in the container
# Create the default db user (ash)
RUN sudo -u postgres service postgresql start && \
sudo -u postgres psql --command "CREATE USER ash WITH PASSWORD 'pokemon'" && \
sudo -u postgres createdb -O ash pokeapi && \
python manage.py migrate --settings=config.docker && \
printf "from data.v2.build import build_all; build_all()" | python manage.py shell --settings=config.docker
# Expose the app and serve the API.
EXPOSE 8000
CMD service postgresql start && python manage.py runserver --settings=config.docker 0.0.0.0:8000