Skip to content

Commit

Permalink
Dockerfile to create image ready for quick fit and forecast
Browse files Browse the repository at this point in the history
Dockerfile to create image ready for quick fit and forecast
  • Loading branch information
edwinnglabs committed Mar 13, 2024
2 parents 875c7ca + 7b9e648 commit 7feb449
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: lint
name: Lint

on: [push]

Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/post-merge-build.yaml

This file was deleted.

12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.9

RUN pip install --upgrade pip
RUN pip install -U setuptools

WORKDIR /orbit
COPY . .

RUN python -m pip install --no-cache-dir -r requirements.txt
RUN python -m pip install --no-cache-dir -r requirements-test.txt

RUN python -m pip install -e . -v

0 comments on commit 7feb449

Please sign in to comment.