Skip to content

Commit f924398

Browse files
authored
Update Dockerfile
1 parent 90a2f24 commit f924398

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@ COPY . .
2525
# Expose the default port
2626
EXPOSE 8080
2727

28-
# Ring runtime settings
29-
ENV RING_FILE=main.ring
30-
ENV RING_PACKAGES=simplejson
28+
# Install dependencies
29+
RUN ringpm install
3130

3231
# Server Settings
3332
ENV SERVER_HOST=0.0.0.0
@@ -52,4 +51,4 @@ ENV METRICS_ENABLED=false
5251

5352
# Health check
5453
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
55-
CMD curl -f http://localhost:${SERVER_PORT}/health || exit 1
54+
CMD curl -f http://localhost:${SERVER_PORT}/health || exit 1

0 commit comments

Comments
 (0)