Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrieber authored Apr 8, 2024
1 parent 17e6a0b commit 6b5cb4f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#FROM ubuntu:22.04
FROM alpine
FROM ubuntu:22.04
#FROM alpine

#RUN apt update && apt install -y wine unzip wget
RUN apk add --no-cache wine unzip wget
RUN apt update && apt install -y wine unzip wget
#RUN apk add --no-cache wine unzip wget

RUN mkdir -p /godot/releases && mkdir -p /godot/templates
WORKDIR /godot
Expand All @@ -23,9 +23,9 @@ RUN cp -r /godot/templates/* /root/.local/share/godot/export_templates/

COPY --chmod=770 /entrypoint.sh /godot/entrypoint.sh

RUN chmod 777 /godot/Godot_v4.2.1-stable_linux.x86_64
#RUN chmod 777 /godot/Godot_v4.2.1-stable_linux.x86_64

RUN ls -la /godot
#RUN ls -la /godot

# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/godot/entrypoint.sh"]

0 comments on commit 6b5cb4f

Please sign in to comment.