We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7455f30 commit 551d042Copy full SHA for 551d042
2 files changed
.devcontainer/scripts/setup-lab.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
echo "Setting up Docker lab environment..."
3
docker pull redis:6-alpine
4
-docker pull python:3.11-slim
+docker pull python:3.12-slim
5
docker run --restart=always -d --name redis -p 6379:6379 -v redis:/data redis:6-alpine
6
echo "Setup complete"
Dockerfile
@@ -1,4 +1,4 @@
-FROM python:3.11-slim
+FROM python:3.12-slim
# Create working folder and install dependencies
WORKDIR /app
0 commit comments