-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (19 loc) · 774 Bytes
/
Dockerfile
File metadata and controls
27 lines (19 loc) · 774 Bytes
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
# Use Ubuntu 20.04 LTS as the base image
FROM tonypg39/rac-sim:latest
# Set non-interactive installation to avoid prompts hanging the build
ARG DEBIAN_FRONTEND=noninteractive
# Update the package repository and install updates
RUN apt-get update && apt-get upgrade -y
# Install any necessary dependencies or tools you need
# For example, if you need Git and Vim, you would add:
# RUN apt-get install -y git vim
# Set any environment variable you might need
# ENV MY_ENVIRONMENT_VARIABLE=value
# Copy files from your host to your Docker image
# COPY ./source_code /app
# Set the working directory inside the container
# WORKDIR /app
# Run any command you need to initialize
# RUN some_command_to_run
# Command to run when the container starts
# CMD ["command_to_run"]