-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-env.dockerfile
33 lines (28 loc) · 944 Bytes
/
run-env.dockerfile
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
#####################################
############ Image Pull #############
#####################################
# Pull Cuda Environment
FROM ai-stack-lite-base-1:latest
#####################################
########## Configuration ############
#####################################
# Expose Port
EXPOSE 5000
#####################################
############# File Copy #############
#####################################
# Copy all files into file Copy
ADD . /workspace/ai-stack-lite
# Change Directory
WORKDIR /workspace/ai-stack-lite
# ! : Removing copied twice build
RUN rm -Rf ./build
#####################################
########### Installations ###########
#####################################
# Set non interactive
ENV DEBIAN_FRONTEND=noninteractive
#####################################
############# Execute RUN ###########
#####################################
ENTRYPOINT ["sh", "./run.sh"]