File size: 665 Bytes
bfd7ad1
378a5e0
27b4783
bfd7ad1
 
27b4783
bfd7ad1
 
745949e
bfd7ad1
184ea9d
fc33af8
4391848
119aa40
 
bfd7ad1
 
 
 
 
 
27b4783
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# # Use the base Ubuntu 18.04 image
FROM ubuntu:latest

# # Set the working directory
# WORKDIR /home/cs16server

# # Update the package repositories and install dependencies
RUN apt-get update && apt-get install -y wget unzip
COPY . ./app
# # Download and install Counter-Strike 1.6 Dedicated Server
# RUN wget https://factorio.com/get-download/1.1.87/headless/linux64
RUN ls /app
RUN tar -xf /app/factorio_headless_x64_1.1.87.tar.xz

# && rm factorio_headless_x64_1.1.87.tar.xz

# # Expose the necessary ports
#EXPOSE 27015/udp

# # Set the entry point to start the server
ENTRYPOINT ["./factorio/bin/x64/factorio", "--start-server", "dd.zip", "-port", "7860"]