Skip to content

Commit

Permalink
fix(gateway): from dockerfile to python (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
perriea authored May 10, 2023
1 parent b20e6a4 commit 17ae7db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ RUN wget https://github.com/IbcAlpha/IBC/releases/download/${IBC_VERSION}/IBCLin
# Set permissions
RUN chmod +x *.sh /opt/ibc/*.sh /opt/ibc/*/*.sh

FROM debian:stable-slim
# Python base for running custom scripts
FROM python:3.11.3-slim-bullseye

ARG QUAY_EXPIRE=never

Expand Down Expand Up @@ -47,4 +48,4 @@ RUN chmod +x ./*.sh /opt/ibc/**.sh
# 4002: Gateway Virtual Trading
EXPOSE 5900 4001 4002

CMD [ "./run.sh" ]
CMD [ "./run.sh" ]

0 comments on commit 17ae7db

Please sign in to comment.