view Dockerfile @ 33:ce76ca96d80f

update tags
author convert-repo
date Tue, 03 Jun 2025 13:20:40 +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"]