File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,12 @@ RUN set -e \
2828&& addgroup --system --gid 1001 gcontainer \
2929&& adduser --system --uid 1001 -G gcontainer fileCheckerRunner
3030
31+ RUN set -e \
32+ && mkdir -p /app/results /app/data /app/file_checker_spec; \
33+ && chown root:gcontainer /app/results /app/data /app/file_checker_spec; \
34+ && chmod 2775 /app/results; \
35+ && chmod 2755 /app/data /app/file_checker_spec
36+
3137# Copy the built jar file to the runtime stage
3238COPY --from=builder --chown=root:gcontainer --chmod=750 /build/target/file_checker*.jar app.jar
3339# Specify the default command for running the app
Original file line number Diff line number Diff line change 1+ @ echo off
2+ REM Docker Compose script for Windows
3+
4+ docker compose --env-file .env.demo.bodc down
5+ docker compose --env-file .env.demo.bodc up
You can’t perform that action at this time.
0 commit comments