-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile: remove unused directives
- Loading branch information
1 parent
1b72782
commit adaeac0
Showing
1 changed file
with
1 addition
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,7 @@ | |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
|
||
FROM node:20-alpine \ | ||
AS build | ||
FROM node:20-alpine | ||
|
||
ENV USER=appuser | ||
ENV UID=10001 | ||
|
@@ -43,8 +42,6 @@ RUN apk update \ | |
&& apk add --no-cache ca-certificates \ | ||
&& update-ca-certificates | ||
|
||
WORKDIR '/app' | ||
|
||
RUN npm install -g [email protected] \ | ||
&& npx swagger-typescript-api --version | ||
|
||
|