Skip to content

Commit

Permalink
Merge pull request #16 from mmcaulif/manus/docker
Browse files Browse the repository at this point in the history
feat: added simple dockerfile and jax ecosystem packages
  • Loading branch information
mmcaulif authored Nov 15, 2024
2 parents 9f768fe + 7cb9b11 commit 4ab312c
Show file tree
Hide file tree
Showing 3 changed files with 757 additions and 188 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM python:3.11-slim

# set a directory for the app
WORKDIR /app

# set up poetry
COPY pyproject.toml pyproject.toml
COPY poetry.lock poetry.lock
RUN pip install poetry
RUN poetry config virtualenvs.create false

# set up environment
COPY . /app
RUN poetry install --with dev

# Tensorboard
EXPOSE 6006

# https://stackoverflow.com/questions/41523005/how-to-use-tensorboard-in-a-docker-container-on-windows
Loading

0 comments on commit 4ab312c

Please sign in to comment.