Skip to content

Commit

Permalink
Add dockerfile for reproducibility
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Feb 8, 2024
1 parent d4d5cd5 commit b492ff7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,12 @@ jobs:
run: make install
- name: Test the repo
run: make test
- name: Log in to the Container registry
uses: docker/login-action
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container
run: docker build -t ghcr.io/pslmodels/tax-microdata-benchmarking

4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install .

0 comments on commit b492ff7

Please sign in to comment.