-
Notifications
You must be signed in to change notification settings - Fork 0
/
rubydev.Dockerfile
49 lines (35 loc) · 1.28 KB
/
rubydev.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Container with ubuntu
FROM ubuntu:24.04
#####################################################################
# Install common packages
#####################################################################
# Update the package repository
RUN apt-get update
# Install basic dependencies
RUN apt-get install -y build-essential libssl-dev zlib1g-dev
#####################################################################
# Install Ruby related dependencies
#####################################################################
# Install ruby
RUN apt-get install -y ruby ruby-dev
# Install rack gem
RUN gem install rack
# Install puma gem
RUN gem install puma
# Install bundler gem
RUN gem install bundler
# Copy Gemfile and Gemfile.lock to install gems via bundler
COPY DeployTool/Gemfile /app/Gemfile
COPY DeployTool/Gemfile.lock /app/Gemfile.lock
RUN cd /app && bundle install
#####################################################################
# Install ssh client
#####################################################################
RUN apt-get install -y openssh-client
#####################################################################
# Common settings
#####################################################################
# Working directory
WORKDIR /app
# Expose the port
EXPOSE 3000