[220c38]: / codesys-ide / Dockerfile  Maximize  Restore  History

Download this file

60 lines (49 with data), 1.6 kB

 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Stage 1:
# Install CODESYS in debian stretch with wine-development version
#
FROM debian:stretch

RUN dpkg --add-architecture i386
RUN apt-get update && \
    apt-get install -y wine32-development wine64-development wget subversion winbind python-requests cabextract xvfb xdotool jwm procps

RUN useradd -ms /bin/bash wineuser

# Configure locales
RUN apt-get install -y locales
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
    locale-gen
ENV LANG en_US.UTF-8  
ENV LANGUAGE en_US:en  
ENV LC_ALL en_US.UTF-8

# Install CODESYS
USER wineuser
WORKDIR "/home/wineuser"
ADD install.sh /home/wineuser/
RUN ./install.sh --xvfb; test -f /home/wineuser/.wine.cds/drive_c/CODESYS/CODESYS/Common/CODESYS.exe

USER root
RUN apt-get install -y tigervnc-standalone-server

#
# Stage 2
# Cleaner image, just containing CODESYS in wine
#
FROM debian:stretch
ENV WINEPREFIX=/home/wineuser/.wine.cds

USER root
RUN dpkg --add-architecture i386
RUN apt-get update && \
    apt-get install -y wine32-development wine64-development wget subversion winbind python-requests \
    locales xvfb
    
# Configure locales
RUN useradd -ms /bin/bash wineuser
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
    locale-gen
ENV LANG en_US.UTF-8  
ENV LANGUAGE en_US:en  
ENV LC_ALL en_US.UTF-8

USER wineuser
COPY --from=0 /home/wineuser/.wine.cds /home/wineuser/.wine.cds
USER root
RUN chown -R wineuser:users /home/wineuser/.wine.cds
ADD codesys /usr/local/bin/codesys
ADD scripts /usr/local/share/codesys

USER wineuser
CMD [ "echo" ]