Skip to content

Commit

Permalink
dockerize main pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
pmhalvor committed Sep 28, 2024
1 parent 24e3d92 commit 07eac77
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM apache/beam_python3.11_sdk

COPY . /home

WORKDIR /home

# Install HDF5 using apt
RUN apt-get update && apt-get install -y libhdf5-dev
RUN pip install -r requirements.txt

CMD ["python", "src/pipeline/app.py"]

0 comments on commit 07eac77

Please sign in to comment.