Update Dockerfile to include Go and dependencies for Museum server

This commit is contained in:
Andreas Düren 2025-03-14 21:42:45 +01:00
parent 1d30b3d943
commit dddefb0f50

@ -1,8 +1,8 @@
FROM cloudron/base:5.0.0@sha256:04fd70dbd8ad6149c19de39e35718e024417c3e01dc9c6637eaf4a41ec4e596c
# Install necessary packages
# Install necessary packages for both Go and Node.js
RUN apt-get update && \
apt-get install -y curl git nodejs npm && \
apt-get install -y curl git nodejs npm golang libsodium23 libsodium-dev pkg-config && \
npm install -g yarn && \
apt-get clean && apt-get autoremove && \
rm -rf /var/cache/apt /var/lib/apt/lists