Skip to content

Commit

Permalink
Add yeager service
Browse files Browse the repository at this point in the history
Signed-off-by: Aisuko <urakiny@gmail.com>
  • Loading branch information
Aisuko committed Jul 17, 2024
1 parent 16f9285 commit d03d1ad
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.gitignore
LICENSE
README.md
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.11.8-slim

WORKDIR /app

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

COPY requirements.txt .

RUN pip --disable-pip-version-check --no-cache-dir install -r requirements.txt && rm -rf /tmp/pip-tmp

ENTRYPOINT ["tensorboard", "--logdir=runs"]
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tensorboard==2.17.0

0 comments on commit d03d1ad

Please sign in to comment.