This repository was archived by the owner on May 31, 2019. It is now read-only.
File tree 2 files changed +18
-3
lines changed
1.0.0-rc1-update1-coreclr
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,14 @@ ENV DNX_USER_HOME /opt/DNX_BRANCH
7
7
# the smaller base image. So we use this variable to overwrite the default detection.
8
8
ENV DNX_RUNTIME_ID ubuntu.14.04-x64
9
9
10
- RUN apt-get -qq update && apt-get -qqy install unzip curl libicu-dev libunwind8 gettext libssl-dev libcurl3-gnutls zlib1g && rm -rf /var/lib/apt/lists/*
10
+ # In order to address an issue with running a sqlite3 database on aspnet-docker-linux
11
+ # a version of sqlite3 must be installed that is greater than or equal to 3.7.15
12
+ # which is not available on the default apt sources list in this image.
13
+ # ref: https://github.com/aspnet/EntityFramework/issues/3089
14
+ # https://github.com/aspnet/aspnet-docker/issues/121
15
+ RUN printf "deb http://ftp.us.debian.org/debian jessie main\n " >> /etc/apt/sources.list
16
+
17
+ RUN apt-get -qq update && apt-get -qqy install unzip curl libicu-dev libunwind8 gettext libssl-dev libcurl3-gnutls zlib1g sqlite3 libsqlite3-dev && rm -rf /var/lib/apt/lists/*
11
18
12
19
RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_USER_HOME=$DNX_USER_HOME DNX_BRANCH=v$DNX_VERSION sh
13
20
RUN bash -c "source $DNX_USER_HOME/dnvm/dnvm.sh \
Original file line number Diff line number Diff line change @@ -7,7 +7,15 @@ ENV DNX_USER_HOME /opt/dnx
7
7
# the smaller base image. So we use this variable to overwrite the default detection.
8
8
ENV DNX_RUNTIME_ID ubuntu.14.04-x64
9
9
10
- RUN apt-get -qq update && apt-get -qqy install unzip libc6-dev libicu-dev && rm -rf /var/lib/apt/lists/*
10
+ # In order to address an issue with running a sqlite3 database on aspnet-docker-linux
11
+ # a version of sqlite3 must be installed that is greater than or equal to 3.7.15
12
+ # which is not available on the default apt sources list in this image.
13
+ # ref: https://github.com/aspnet/EntityFramework/issues/3089
14
+ # https://github.com/aspnet/aspnet-docker/issues/121
15
+ RUN printf "deb http://ftp.us.debian.org/debian jessie main\n " >> /etc/apt/sources.list
16
+
17
+ # added sqlite3 & libsqlite3-dev install for use with aspnet-generators (Entity framework)
18
+ RUN apt-get -qq update && apt-get -qqy install unzip libc6-dev libicu-dev sqlite3 libsqlite3-dev && rm -rf /var/lib/apt/lists/*
11
19
12
20
RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_USER_HOME=$DNX_USER_HOME DNX_BRANCH=v$DNX_VERSION sh
13
21
RUN bash -c "source $DNX_USER_HOME/dnvm/dnvm.sh \
@@ -32,4 +40,4 @@ RUN LIBUV_VERSION=1.4.2 \
32
40
ENV PATH $PATH:$DNX_USER_HOME/runtimes/default/bin
33
41
34
42
# Prevent `dnu restore` from stalling (gh#63, gh#80)
35
- ENV MONO_THREADS_PER_CPU 50
43
+ ENV MONO_THREADS_PER_CPU 50
You can’t perform that action at this time.
0 commit comments