Explorar el Código

switched to debian:jessie

develop
Robin Thoni hace 5 años
padre
commit
3a96d2b8dc
Se han modificado 2 ficheros con 3 adiciones y 4 borrados
  1. 1
    2
      backend/Dockerfile
  2. 2
    2
      frontend/Dockerfile

+ 1
- 2
backend/Dockerfile Ver fichero

@@ -14,8 +14,7 @@ RUN echo "Building ${WEBAPI_PROJECT} in ${BUILD_CONFIG} configuration" && \
14 14
     cd /tmp/backend/${WEBAPI_PROJECT} && \
15 15
     dotnet publish --configuration "${BUILD_CONFIG}" --output /var/www && \
16 16
     cp /tmp/backend/${WEBAPI_PROJECT}/appsettings.* "${CONFIG_DIR}" && \
17
-    ln -s /var/www/${WEBAPI_PROJECT}.dll /var/www/__RUN_ME.DLL &&\
18
-    ls /var/www /tmp/backend/SiteStatus/bin/Release/netcoreapp2.1
17
+    ln -s /var/www/${WEBAPI_PROJECT}.dll /var/www/__RUN_ME.DLL
19 18
 
20 19
 FROM microsoft/dotnet:2.1-aspnetcore-runtime
21 20
 

+ 2
- 2
frontend/Dockerfile Ver fichero

@@ -1,4 +1,4 @@
1
-FROM robinthoni/debian-multiarch:jessie AS builder
1
+FROM debian:jessie AS builder
2 2
 
3 3
 # FROM https://github.com/ZHAJOR/Docker-Apache-2.4-Php-5.6-for-Laravel
4 4
 MAINTAINER Robin Thoni <robin@rthoni.com>
@@ -26,7 +26,7 @@ RUN cd /tmp/frontend && \
26 26
     cp -r /tmp/frontend/dist/SiteStatus/ /var/www/html && \
27 27
     rm -rf /tmp/frontend
28 28
 
29
-FROM robinthoni/debian-multiarch:jessie
29
+FROM debian:jessie
30 30
 
31 31
 RUN apt-get update && apt-get -y install \
32 32
         apache2=2.4.* && \

Loading…
Cancelar
Guardar