From a3c530bac8bef32b5eba90b484db6ef3a2fb5b32 Mon Sep 17 00:00:00 2001 From: mcotton Date: Wed, 25 Oct 2023 21:36:55 -0500 Subject: [PATCH] updated python in docker, fixed port mapping for workstation --- Dockerfile | 2 +- docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6395d1b..354f598 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.9-slim +FROM python:3.10-slim COPY ./requirements.txt /app/requirements.txt diff --git a/docker-compose.yaml b/docker-compose.yaml index b1e2134..7f853a3 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -6,7 +6,7 @@ services: volumes: - .:/app ports: - - "9400:3000" + - "3333:3000" restart: always tty: true user: 1000:1000