Mercurial > public > bitcaviar-plus
view Dockerfile @ 34:bd0ec5cb2300 default tip
Move to mercurial
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 03 Jun 2025 14:24:28 +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"]