12 lines
369 B
Docker
12 lines
369 B
Docker
FROM dobu/deps-base-ubuntu-jammy:latest
|
|
|
|
RUN apt-get -y update && apt-get -y install libgtk-3-0 curl libnss3
|
|
|
|
COPY ./itch-wrapper.sh /usr/bin/itch-wrapper.sh
|
|
|
|
RUN curl -Lo /usr/bin/itch-setup 'https://itch.io/app/download?platform=linux' && \
|
|
chmod +x /usr/bin/itch-setup && chmod +x /usr/bin/itch-wrapper.sh
|
|
|
|
USER user
|
|
|
|
ENTRYPOINT [ "/usr/bin/itch-wrapper.sh" ]
|