docker: internal only + path copy

This commit is contained in:
Quaternions 2024-12-17 18:49:51 -08:00
parent f7101e2b84
commit b5bb79c6ef
2 changed files with 1 additions and 2 deletions

View File

@ -56,7 +56,6 @@ services:
- ../auth-compose/strafesnet_staging.env - ../auth-compose/strafesnet_staging.env
environment: environment:
- ROBLOX_GROUP_ID=17032139 # "None" is special case string value - ROBLOX_GROUP_ID=17032139 # "None" is special case string value
- API_HOST=http://submissions:8082
- API_HOST_INTERNAL=http://submissions:8083 - API_HOST_INTERNAL=http://submissions:8083
- NATS_HOST=nats:4222 - NATS_HOST=nats:4222
- DATA_HOST=http://dataservice:9000 - DATA_HOST=http://dataservice:9000

View File

@ -11,7 +11,7 @@ RUN cargo chef prepare --recipe-path recipe.json
FROM chef AS builder FROM chef AS builder
COPY --from=planner /app/recipe.json recipe.json COPY --from=planner /app/recipe.json recipe.json
COPY api ./api
# Notice that we are specifying the --target flag! # Notice that we are specifying the --target flag!
RUN cargo chef cook --release --target x86_64-unknown-linux-musl --recipe-path recipe.json RUN cargo chef cook --release --target x86_64-unknown-linux-musl --recipe-path recipe.json
COPY . . COPY . .