Copy Erlang binaries to expected erts directory

This commit is contained in:
Andreas Dueren
2025-06-20 12:21:35 -06:00
parent 0e2b274fff
commit 3f0a5450f4
3 changed files with 27 additions and 9 deletions

View File

@ -15,11 +15,12 @@ COPY --from=pentacent/keila:0.14 /usr/local/bin/escript /usr/local/bin/escript
# Copy configuration files
COPY start.sh /app/code/start.sh
COPY keila-wrapper.sh /app/code/keila-wrapper.sh
COPY supervisor/ /etc/supervisor/conf.d/
COPY nginx.conf /etc/nginx/sites-available/default
# Set permissions
RUN chmod +x /app/code/start.sh && \
RUN chmod +x /app/code/start.sh /app/code/keila-wrapper.sh && \
chown -R cloudron:cloudron /app/code /app/pkg
WORKDIR /app/code