Skip to content

Commit fd61483

Browse files
fix ruby version in dockerfile
1 parent 48d9fea commit fd61483

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base image for Ruby (you can specify a version)
2-
FROM ruby:3.9.1
2+
FROM ruby:3.0.5
33

44
# Install any system dependencies (adjust based on your gem's needs)
55
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ services:
66
- .:/app # Map the current directory to /app inside the container
77
stdin_open: true
88
tty: true
9-
ports:
10-
- "3000:3000" # If you're using a server (e.g., for testing with Rails), map the port

0 commit comments

Comments
 (0)