Dev 0.2.1 #30

Merged
LukeGus merged 47 commits from dev-0.2.1 into main 2025-03-24 03:17:56 +00:00
Showing only changes of commit f9d32c597a - Show all commits
+3 -2
View File
@@ -25,7 +25,8 @@ RUN apk add --no-cache python3 make g++ \
FROM mongo:4.4-focal FROM mongo:4.4-focal
# Install Node.js and nginx # Install Node.js and nginx
RUN apt-get update && \ RUN rm -f /etc/apt/sources.list.d/mongodb*.list && \
apt-get update && \
# Install curl and gnupg for Node.js repository # Install curl and gnupg for Node.js repository
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
curl \ curl \
@@ -38,7 +39,7 @@ RUN apt-get update && \
nginx && \ nginx && \
# Cleanup # Cleanup
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* \ rm -rf /var/lib/apt/lists/* && \
rm -rf /var/cache/apt/* rm -rf /var/cache/apt/*
# Configure nginx and copy frontend # Configure nginx and copy frontend