mirror of
https://github.com/iLLeniumStudios/fivem-resource-watcher
synced 2024-02-26 13:38:52 +01:00
Update
This commit is contained in:
+2
-4
@@ -1,8 +1,6 @@
|
|||||||
# Container image that runs your code
|
# Container image that runs your code
|
||||||
FROM alpine:3.17
|
FROM alpine:3.17
|
||||||
|
|
||||||
RUN apk add --no-cache curl tar git
|
|
||||||
|
|
||||||
# Use icecon instead. For some reason rcon-cli doesn't send a valid command
|
# Use icecon instead. For some reason rcon-cli doesn't send a valid command
|
||||||
#ARG RCON_VERSION="0.10.2"
|
#ARG RCON_VERSION="0.10.2"
|
||||||
#
|
#
|
||||||
@@ -13,8 +11,8 @@ RUN apk add --no-cache curl tar git
|
|||||||
|
|
||||||
ARG ICECON_VERSION="v1.0.0"
|
ARG ICECON_VERSION="v1.0.0"
|
||||||
|
|
||||||
RUN curl -LO https://github.com/icedream/icecon/releases/download/${ICECON_VERSION}/icecon_linux_amd64 && \
|
RUN wget https://github.com/icedream/icecon/releases/download/${ICECON_VERSION}/icecon_linux_i386 && \
|
||||||
mv icecon_linux_amd64 /usr/local/bin/icecon && \
|
mv icecon_linux_i386 /usr/local/bin/icecon && \
|
||||||
chmod +x /usr/local/bin/icecon
|
chmod +x /usr/local/bin/icecon
|
||||||
|
|
||||||
# Copies your code file from your action repository to the filesystem path `/` of the container
|
# Copies your code file from your action repository to the filesystem path `/` of the container
|
||||||
|
|||||||
Reference in New Issue
Block a user