robosats/Dockerfile
ShatteredBunny 6090e21f6a
Add grpc generation script and update setup.md to run it using docker container (#209)
* Add grpc generation script and update setup.md to run it using docker container

* Change local url from localhost to 127.0.0.1
2022-08-12 16:29:27 +00:00

26 lines
585 B
Docker

FROM python:3.10.2-bullseye
ARG DEBIAN_FRONTEND=noninteractive
RUN mkdir -p /usr/src/robosats
# specifying the working dir inside the container
WORKDIR /usr/src/robosats
RUN apt-get update
RUN apt-get install -y postgresql-client
RUN python -m pip install --upgrade pip
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# copy current dir's content to container's WORKDIR root i.e. all the contents of the robosats app
COPY . .
# install lnd grpc services
RUN sh generate_grpc.sh
EXPOSE 8000
CMD ["python3", "manage.py", "runserver", "0.0.0.0:8000"]