dakaca commited on
Commit
236367e
·
1 Parent(s): 9ace65a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM ubuntu:20.04
2
+ RUN apt-get update && apt-get install -y \
3
+ curl \
4
+ wget \
5
+ vim \
6
+ git
7
+ ENV MY_VAR="hello world"
8
+ CMD ["ls -a"]