view Dockerfile @ 32:e947bfd3db1a

Add images to readme
author Dennis C. M. <dennis@denniscm.com>
date Wed, 20 Nov 2024 08:53:39 +0000
parents 30535f42d0ff
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"]