Skip to content

Commit

Permalink
fix: remove unused region tags
Browse files Browse the repository at this point in the history
  • Loading branch information
glasnt authored and iennae committed May 13, 2024
1 parent 46861fe commit f25b3c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions eventarc/generic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# [START eventarc_generic_dockerfile]

# Use the official lightweight Node.js image.
# https://hub.docker.com/_/node
FROM node:20-slim
Expand All @@ -26,7 +24,7 @@ WORKDIR /usr/src/app
COPY package*.json ./

# Install dependencies.
# if you need a deterministic and repeatable build create a
# if you need a deterministic and repeatable build create a
# package-lock.json file and use npm ci:
# RUN npm ci --omit=dev
# if you need to include development dependencies during development
Expand All @@ -40,5 +38,3 @@ COPY . .

# Run the web service on container startup.
CMD [ "npm", "start" ]

# [END eventarc_generic_dockerfile]
6 changes: 1 addition & 5 deletions eventarc/pubsub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# [START eventarc_pubsub_dockerfile]

# Use the official lightweight Node.js image.
# https://hub.docker.com/_/node
FROM node:20-slim
Expand All @@ -26,7 +24,7 @@ WORKDIR /usr/src/app
COPY package*.json ./

# Install dependencies.
# if you need a deterministic and repeatable build create a
# if you need a deterministic and repeatable build create a
# package-lock.json file and use npm ci:
# RUN npm ci --omit=dev
# if you need to include development dependencies during development
Expand All @@ -40,5 +38,3 @@ COPY . .

# Run the web service on container startup.
CMD [ "npm", "start" ]

# [END eventarc_pubsub_dockerfile]

0 comments on commit f25b3c7

Please sign in to comment.