We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90a2f24 commit f924398Copy full SHA for f924398
1 file changed
Dockerfile
@@ -25,9 +25,8 @@ COPY . .
25
# Expose the default port
26
EXPOSE 8080
27
28
-# Ring runtime settings
29
-ENV RING_FILE=main.ring
30
-ENV RING_PACKAGES=simplejson
+# Install dependencies
+RUN ringpm install
31
32
# Server Settings
33
ENV SERVER_HOST=0.0.0.0
@@ -52,4 +51,4 @@ ENV METRICS_ENABLED=false
52
51
53
# Health check
54
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
55
- CMD curl -f http://localhost:${SERVER_PORT}/health || exit 1
+ CMD curl -f http://localhost:${SERVER_PORT}/health || exit 1
0 commit comments