Skip to content
Snippets Groups Projects

Resolve "Investigate GitLab-CI services don't reach each other"

3 files
+ 39
33
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -5,18 +5,18 @@ FROM ${GOSDN_IMAGE}
RUN mkdir /app/ssl
COPY ./artifacts/ssl/gosdn /app/ssl
COPY .gitlab/ci/start_controller.sh ./run.sh
RUN chmod +x run.sh
ENTRYPOINT [ "./run.sh" ]
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y curl bash wget nmap dnsutils iputils-ping
WORKDIR /app
COPY .gitlab/ci/start_controller.sh ./run.sh
RUN chmod +x run.sh
EXPOSE 1337
ENTRYPOINT [ "/app/run.sh" ]
COPY .gitlab/ci/start_controller.sh ./start_controller.sh
RUN chmod +x start_controller.sh
ENTRYPOINT [ "./start_controller.sh" ]
#FROM debian:bookworm-slim
#
#RUN apt-get update && apt-get install -y curl bash wget nmap dnsutils iputils-ping
#
#WORKDIR /app
#
#COPY .gitlab/ci/run.sh ./run.sh
#RUN chmod +x run.sh
#
#EXPOSE 1337
#ENTRYPOINT [ "/app/run.sh" ]
Loading