view Dockerfile @ 27:348a07008703

remove funding
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Thu, 06 Jan 2022 12:10:25 +0000
parents 7d3cc440e578
children 30535f42d0ff
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 ["python3", "-u", "tests/implementation_testing.py"]