We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e07266 commit 520d81dCopy full SHA for 520d81d
Dockerfile.base
@@ -59,6 +59,9 @@ ARG SERVICE_NAME
59
ENV SERVICE_NAME=${SERVICE_NAME}
60
WORKDIR /app
61
62
+# Install Docker
63
+RUN apk add --no-cache docker-cli
64
+
65
# Copy built code
66
COPY --from=builder /app .
67
docker-compose.yml
@@ -324,6 +324,8 @@ services:
324
container_name: leetcode-execution-service
325
ports:
326
- '5007:5007'
327
+ volumes:
328
+ - /var/run/docker.sock:/var/run/docker.sock
329
logging:
330
driver: loki
331
options:
0 commit comments