Mercurial > public > bitcaviar-plus
view Dockerfile @ 28:30535f42d0ff
refactor code
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Wed, 02 Feb 2022 21:16:10 +0100 |
parents | 7d3cc440e578 |
children |
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 /bitcaviar-plus # Copy files COPY . . # Install package RUN ["python", "setup.py", "install"] # Test package CMD ["python", "-m", "unittest", "tests.test_implementation"]