Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/create docker image #706

Merged
merged 11 commits into from
Jun 6, 2024
Prev Previous commit
add missing dependencies
  • Loading branch information
zerotacg committed Jun 5, 2024
commit a5021e60e3ccc609e424eec391f9928e4126bb60
16 changes: 10 additions & 6 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,19 @@ ENV LD_LIBRARY_PATH=/usr/local/lib
# install dependencies
RUN apt update; \
apt install --yes \
libcurl4 \
libfreetype6 \
libgif7 \
libgsf-1-114 \
libjpeg8 \
libpng16-16 \
libxml2 \
libfreetype6 \
liblua5.2-0 \
libluabind0.9.1d1 \
libcurl4 \
libluabind0.9.1d1 \
libmysqlclient21 \
libpng16-16 \
libqt5widgets5 \
libsquish0 \
libvorbis0a \
libvorbisfile3
libvorbisfile3 \
libxml2

USER $USERNAME
Loading