-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some code improvements, dependency updates, switched from npm to yarn
- Loading branch information
Showing
7 changed files
with
1,012 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM node:alpine | ||
LABEL maintainer="Simon Scholl <[email protected]>" | ||
FROM node:12-alpine | ||
LABEL maintainer="Michael Lux <[email protected]>" | ||
|
||
RUN mkdir /app && chown node:node /app | ||
USER node | ||
WORKDIR /app | ||
|
||
COPY . . | ||
RUN npm install | ||
RUN yarn install | ||
|
||
EXPOSE 1389 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Build from parent directory with this command: | ||
# docker build -t milux/ctldap:arm32v7-latest -f ./arm32v7/Dockerfile . | ||
|
||
FROM arm32v7/node:latest | ||
FROM arm32v7/node:12-alpine | ||
LABEL maintainer="Michael Lux <[email protected]>" | ||
|
||
RUN mkdir /app && chown node:node /app | ||
USER node | ||
WORKDIR /app | ||
|
||
COPY . . | ||
RUN npm install | ||
RUN yarn install | ||
|
||
EXPOSE 1389 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Build from parent directory with this command: | ||
# docker build -t milux/ctldap:arm64v8-latest -f ./arm64v8/Dockerfile . | ||
|
||
FROM arm64v8/node:alpine | ||
FROM arm64v8/node:12-alpine | ||
LABEL maintainer="Michael Lux <[email protected]>" | ||
|
||
RUN mkdir /app && chown node:node /app | ||
USER node | ||
WORKDIR /app | ||
|
||
COPY . . | ||
RUN npm install | ||
RUN yarn install | ||
|
||
EXPOSE 1389 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.