Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -6,10 +6,10 @@ FROM ubuntu:latest
|
|
6 |
|
7 |
# # Update the package repositories and install dependencies
|
8 |
RUN apt-get update && apt-get install -y wget unzip
|
9 |
-
COPY .
|
10 |
# # Download and install Counter-Strike 1.6 Dedicated Server
|
11 |
# RUN wget https://factorio.com/get-download/1.1.87/headless/linux64
|
12 |
-
RUN tar -xf /
|
13 |
|
14 |
# && rm factorio_headless_x64_1.1.87.tar.xz
|
15 |
|
|
|
6 |
|
7 |
# # Update the package repositories and install dependencies
|
8 |
RUN apt-get update && apt-get install -y wget unzip
|
9 |
+
COPY . ./app
|
10 |
# # Download and install Counter-Strike 1.6 Dedicated Server
|
11 |
# RUN wget https://factorio.com/get-download/1.1.87/headless/linux64
|
12 |
+
RUN tar -xf ''/app/*.xz'
|
13 |
|
14 |
# && rm factorio_headless_x64_1.1.87.tar.xz
|
15 |
|