Skip to content

Commit

Permalink
Stats updates
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatkot authored Feb 11, 2025
1 parent 8817c75 commit 7f46bd9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_docker_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ jobs:
iwatkot/maps4fs:${{ github.ref_name }}
file: ./Dockerfile
build-args: |
API_TOKEN=${{ secrets.API_TOKEN }}
API_TOKEN=${{ secrets.API_TOKEN }}
STATS_HOST=${{ secrets.STATS_HOST }}
3 changes: 2 additions & 1 deletion .github/workflows/build_docker_lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ jobs:
iwatkot/maps4fs:${{ github.ref_name }}_lite
file: ./Dockerfile_lite
build-args: |
API_TOKEN=${{ secrets.API_TOKEN }}
API_TOKEN=${{ secrets.API_TOKEN }}
STATS_HOST=${{ secrets.STATS_HOST }}
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM python:3.11-slim-buster

ARG API_TOKEN
ENV API_TOKEN=${API_TOKEN}
ARG STATS_HOST
ENV STATS_HOST=${STATS_HOST}

# Dependencies for opencv and blender.
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile_lite
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM python:3.11-slim-buster

ARG API_TOKEN
ENV API_TOKEN=${API_TOKEN}
ARG STATS_HOST
ENV STATS_HOST=${STATS_HOST}

# Dependencies for opencv.
RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit 7f46bd9

Please sign in to comment.