Mercurial > public > bitcaviar-plus
view Dockerfile @ 19:905b6fdc5e1b
handle invalid magic bytes
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Wed, 10 Nov 2021 11:37:44 +0100 |
parents | |
children | 32061555853c |
line wrap: on
line source
# syntax=docker/dockerfile:1 # Install Python image FROM python:3.8-slim-buster # Create working directory and install dependencies WORKDIR /app COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt # Copy files COPY src/bitcaviar_plus bitcaviar_plus/ COPY tests/test_app.py . # Run script CMD ["python3", "-u", "test_app.py"]