Commit 3f6fb3a8 authored by John Red Medrano's avatar John Red Medrano

Merge pull request #693 in RMS/api-main-service from red-develop to product-dev

* commit '67b69dd0':
  remove dockerfile and docker-compose to fix conflict
parents 9e1191b6 67b69dd0
FROM python:3.6
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ADD . /code
COPY . /code
WORKDIR /code
RUN pip install -r requirements/local.txt
EXPOSE 7020
RUN python manage.py migrate
version: '3'
services:
web:
image: dev-rmsv2:latest
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "7020:8000"
container_name: dev_rmsv2_api_container
restart: always
Markdown is supported
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