Kano001 commited on
Commit
01f542a
·
verified ·
1 Parent(s): 64d76a2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -16
Dockerfile CHANGED
@@ -1,21 +1,11 @@
1
- FROM ubuntu:20.04
2
-
3
- # Set the timezone environment variable (example: America/New_York)
4
- ENV TZ=America/New_York
5
 
6
- # Install tzdata package and set timezone non-interactively
7
- RUN apt-get update && apt-get install -y tzdata \
8
- && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime \
9
- && echo $TZ > /etc/timezone \
10
- && apt-get clean
11
 
12
- # Install dependencies
13
- RUN apt-get update && apt-get install -y \
14
- xvfb \
15
- wine \
16
- wget \
17
- unzip \
18
- && rm -rf /var/lib/apt/lists/*
19
 
20
  # Set working directory
21
  WORKDIR /app
 
1
+ FROM ubuntu:bionic
 
 
 
2
 
3
+ ARG DEBIAN_FRONTEND=noninteractive
 
 
 
 
4
 
5
+ RUN apt-get update && \
6
+ apt-get install -y libglu1 xvfb libxcursor1 ca-certificates && \
7
+ apt-get clean && \
8
+ update-ca-certificates
 
 
 
9
 
10
  # Set working directory
11
  WORKDIR /app