Duongkum999 commited on
Commit
b4589b1
·
verified ·
1 Parent(s): bcb111a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -0
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Sử dụng Ubuntu làm base image
2
+ FROM ubuntu:20.04
3
+
4
+ # Cài đặt các gói cần thiết
5
+ RUN apt-get update && \
6
+ apt-get install -y wget curl git vim && \
7
+ apt-get install -y build-essential
8
+
9
+ # Cài đặt Go
10
+ RUN wget https://golang.org/dl/go1.16.5.linux-amd64.tar.gz && \
11
+ tar -C /usr/local -xzf go1.16.5.linux-amd64.tar.gz && \
12
+ export PATH=$PATH:/usr/local/go/bin
13
+
14
+ # Cài đặt gotty
15
+ RUN go get github.com/yudai/gotty
16
+
17
+ # Tạo một thư mục làm việc
18
+ WORKDIR /root
19
+
20
+ # Chạy gotty khi container khởi động
21
+ CMD ["/root/go/bin/gotty", "-w", "/bin/bash"]