test-python-scripts
Last change
on this file since f4aa95a was
f160ff2,
checked in by Antonio Emmanuel Guerrero Silva <aguerrero@…>, 7 months ago
|
refs #693 add docker files for test
|
-
Property mode set to
100644
|
File size:
551 bytes
|
Line | |
---|
1 | FROM ubuntu:24.04 |
---|
2 | |
---|
3 | RUN apt-get update && \ |
---|
4 | apt-get install -y software-properties-common && \ |
---|
5 | add-apt-repository ppa:deadsnakes/ppa && \ |
---|
6 | apt-get update && \ |
---|
7 | apt-get install -y python3.12 python3-pip && \ |
---|
8 | apt-get install -y cron vim && \ |
---|
9 | apt-get clean |
---|
10 | |
---|
11 | # Instalar locales para habilitar locale-gen |
---|
12 | RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* |
---|
13 | |
---|
14 | RUN mkdir -p /opt/opengnsys && \ |
---|
15 | mkdir -p /opt/ogcore && \ |
---|
16 | mkdir -p /opt/cron_jobs |
---|
17 | |
---|
18 | WORKDIR /opt/opengnsys/ |
---|
19 | |
---|
20 | EXPOSE 8088 |
---|
21 | |
---|
22 | CMD ["python3.12"] |
---|
Note: See
TracBrowser
for help on using the repository browser.