chore: improve dockerignore
This commit is contained in:
parent
62a2a39017
commit
da63fc257a
2 changed files with 6 additions and 1 deletions
|
|
@ -11,8 +11,11 @@ google-credentials.json
|
||||||
docker-compose*
|
docker-compose*
|
||||||
.docker_data/
|
.docker_data/
|
||||||
docs/
|
docs/
|
||||||
surreal-data/
|
surreal_data/
|
||||||
temp/
|
temp/
|
||||||
*.env
|
*.env
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
|
.pytest_cache
|
||||||
|
.ruff_cache
|
||||||
|
notebooks/
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,8 @@ WORKDIR /app
|
||||||
COPY . /app
|
COPY . /app
|
||||||
|
|
||||||
RUN uv sync
|
RUN uv sync
|
||||||
|
|
||||||
|
|
||||||
EXPOSE 8502
|
EXPOSE 8502
|
||||||
|
|
||||||
RUN mkdir -p /app/data
|
RUN mkdir -p /app/data
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue