This repository was archived by the owner on May 31, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
1.0.0-rc1-update1-coreclr Expand file tree Collapse file tree 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
77# the smaller base image. So we use this variable to overwrite the default detection.
88ENV DNX_RUNTIME_ID ubuntu.14.04-x64
99
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/*
1118
1219RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_USER_HOME=$DNX_USER_HOME DNX_BRANCH=v$DNX_VERSION sh
1320RUN 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
77# the smaller base image. So we use this variable to overwrite the default detection.
88ENV DNX_RUNTIME_ID ubuntu.14.04-x64
99
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/*
1119
1220RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_USER_HOME=$DNX_USER_HOME DNX_BRANCH=v$DNX_VERSION sh
1321RUN bash -c "source $DNX_USER_HOME/dnvm/dnvm.sh \
@@ -32,4 +40,4 @@ RUN LIBUV_VERSION=1.4.2 \
3240ENV PATH $PATH:$DNX_USER_HOME/runtimes/default/bin
3341
3442# 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