Skip to content

Commit

Permalink
add apt-file
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jun 9, 2015
1 parent c2adfae commit 9f41315
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apt-file/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
apt-file \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

CMD [ "apt-file" ]
30 changes: 30 additions & 0 deletions visualstudio/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
build-essential \
ca-certificates \
curl \
libasound2 \
libgconf-2-4 \
libgnome-keyring-dev \
libgtk2.0-0 \
libnss3 \
libpci3 \
libxtst6 \
unzip \
zip \
--no-install-recommends

# install node
RUN curl -sL https://deb.nodesource.com/setup | bash -
RUN apt-get update && apt-get install -y \
nodejs \
&& rm -rf /var/lib/apt/lists/*

# download the source
RUN curl -sSL https://jesss.s3.amazonaws.com/binaries/VSCode-linux-x64.zip -o /tmp/vs.zip \
&& unzip /tmp/vs.zip -d /usr/src/ \
&& rm -rf /tmp/vs.zip

ENTRYPOINT [ "/usr/src/VSCode-linux-x64/Code" ]

0 comments on commit 9f41315

Please sign in to comment.