Skip to content
This repository was archived by the owner on Jun 17, 2024. It is now read-only.

Commit 0d7e316

Browse files
committed
Remove wildcard for file that should always be present
1 parent e99867b commit 0d7e316

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,15 @@ RUN set -eux; \
103103
FROM node:${NODE_VERSION}-alpine AS symfony_node
104104

105105
COPY --link --from=app_php /srv/app/package*.json* /app/
106-
COPY --link --from=app_php /srv/app/vendor* /app/vendor
106+
COPY --link --from=app_php /srv/app/vendor /app/vendor
107107

108108
WORKDIR /app
109109

110110
RUN if [ -f package.json ]; then \
111111
npm install --force; \
112112
fi
113113

114+
# webpack-encore build
114115
COPY --link --from=app_php /srv/app/assets* /app/assets
115116
COPY --link --from=app_php /srv/app/webpack.config.js* /app/
116117

0 commit comments

Comments
 (0)