view Dockerfile @ 29:d9537541d623

Update README.md committer: GitHub <noreply@github.com>
author Dennis C. M. <dennis@denniscm.com>
date Mon, 07 Aug 2023 15:31:56 +0100
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"]