File size: 821 Bytes
bfd7ad1
0bafddd
 
 
 
 
 
 
 
 
 
 
 
 
 
27b4783
0bafddd
 
27b4783
0bafddd
 
 
 
 
 
119aa40
0bafddd
bfd7ad1
0bafddd
 
bfd7ad1
1a762c4
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
25
26
27
28
29
30
31
32
33
34
# # Use the base Ubuntu 18.04 image
# FROM python:3.9

# # # 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
# CMD "python3 -m http.server 0.0.0.0:7860"
# # ENTRYPOINT


FROM python:3.9

WORKDIR /app

RUN chmod 777 /app 
COPY . /app

CMD ["sh","/bin/python3" , "-m" , "http.server", "7860", "&", "./factorio/bin/x64/factorio" ]