Adding osmosis, osmctools, changing port

This commit is contained in:
Devin Dice 2023-01-12 23:45:10 -05:00
parent ddf63968f9
commit 47be569a0d
3 changed files with 13 additions and 4 deletions

View file

@ -91,7 +91,7 @@ RUN apt update \
&& apt autoremove -y \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /workspace
#RUN mkdir /workspace
# Clone and install cloud9
RUN git clone https://github.com/c9/core.git /cloud9/c9sdk
@ -147,7 +147,7 @@ COPY --from=builder /src/web/dist/ /usr/local/lib/web/frontend/
RUN ln -sf /usr/local/lib/web/frontend/static/websockify /usr/local/lib/web/frontend/static/novnc/utils/websockify && \
chmod +x /usr/local/lib/web/frontend/static/websockify/run
EXPOSE 80
EXPOSE 6080
EXPOSE 9999
WORKDIR /workspace
@ -179,4 +179,13 @@ RUN apt -y remove thunar
# Copy files
COPY rootfs /
RUN rm -rf /workspace/*
# Extras
RUN tar xvfz /etc/osmosis/osmosis-0.48.3.tgz --directory /etc/osmosis
RUN tar xvfz /etc/osmosis/osmosis-0.48.3.tgz --directory /etc/osmosis
RUN chmod a+x /etc/osmosis/bin/osmosis
RUN ln -sf /etc/osmosis/bin/osmosis /bin
RUN apt -y install osmctools
#RUN rm -rf /workspace/*

View file

@ -1,5 +1,5 @@
server {
listen 80 default_server;
listen 6080 default_server;
# listen [::]:80 default_server ipv6only=on;
#_SSL_PORT_#listen 443 ssl default_server;

Binary file not shown.