Skip to content
This repository was archived by the owner on Dec 25, 2023. It is now read-only.

Commit d2b1fad

Browse files
committed
添加 docker 镜像
1 parent b7f74b6 commit d2b1fad

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

docker/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.zip

docker/dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM bitnami/aspnet-core:6.0.8-debian-11-r3
2+
3+
COPY CheapSteam-v2.1.0-linux-x64.zip /app/
4+
WORKDIR /app
5+
6+
RUN apt-get update \
7+
&& apt-get install -y unzip \
8+
&& unzip CheapSteam-v2.1.0-linux-x64.zip \
9+
&& chmod 755 /app/CheapSteam-v2.1.0-linux-x64/CheapSteam.UI
10+
11+
WORKDIR /app/CheapSteam-v2.1.0-linux-x64
12+
13+
CMD [ "./CheapSteam.UI" ]

0 commit comments

Comments
 (0)