Spaces:
Paused
Paused
BinaryONe commited on
Commit ·
68f28c1
1
Parent(s): ca1110e
Changes
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
|
@@ -1,6 +1,13 @@
|
|
| 1 |
# Use the latest Ubuntu image
|
| 2 |
FROM ubuntu:focal
|
| 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
# Update package list, install required packages, and clean up
|
| 5 |
RUN apt-get update && \
|
| 6 |
apt-get install -y \
|
|
|
|
| 1 |
# Use the latest Ubuntu image
|
| 2 |
FROM ubuntu:focal
|
| 3 |
|
| 4 |
+
# Set environment variable to avoid interactive prompts
|
| 5 |
+
ENV DEBIAN_FRONTEND=noninteractive
|
| 6 |
+
|
| 7 |
+
# Set timezone to your desired timezone (e.g., "America/New_York")
|
| 8 |
+
RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime && \
|
| 9 |
+
echo "India/Kolkata" > /etc/timezone
|
| 10 |
+
|
| 11 |
# Update package list, install required packages, and clean up
|
| 12 |
RUN apt-get update && \
|
| 13 |
apt-get install -y \
|