close Warning: Failed to sync with repository "ogBrowser-Git": (1366, "Incorrect string value: '\\xF0\\x9F\\x93\\xA6 I...' for column 'message' at row 1"); repository information may be out of date. Look in the Trac log for more information including mitigation strategies.

source: docker/Dockerfile-python @ dd16b3d

ticket-693
Last change on this file since dd16b3d was dd16b3d, checked in by Antonio Emmanuel Guerrero Silva <aguerrero@…>, 13 months ago

refs #693 YAML fixed error to start init/default.sh

  • Property mode set to 100644
File size: 780 bytes
Line 
1FROM ubuntu:24.04
2
3# Evitar interacciones durante la instalación
4ENV DEBIAN_FRONTEND=noninteractive
5
6RUN apt-get update && \
7    apt-get install -y software-properties-common iproute2 && \
8    add-apt-repository ppa:deadsnakes/ppa && \
9    apt-get install -y python3.12 python3-pip cron vim locales kbd console-setup && \
10    echo 'es_ES.UTF-8 UTF-8' > /etc/locale.gen && \
11    locale-gen && \
12    echo 'console-setup console-setup/charmap select UTF-8' | debconf-set-selections && \
13    dpkg-reconfigure -f noninteractive console-setup && \
14    rm -rf /var/lib/apt/lists/* && \
15    apt-get clean
16
17# Crear directorios necesarios
18RUN mkdir -p /opt/opengnsys && \
19    mkdir -p /opt/ogcore && \
20    mkdir -p /opt/cron_jobs
21
22WORKDIR /opt/opengnsys/
23
24EXPOSE 8088
25
26CMD ["python3.12"]
27
Note: See TracBrowser for help on using the repository browser.