BOLLINGER SHIPYARDS LOCKPORT, L.L.C. has received 338 federal award actions with $1,792,034,948.21 obligated over the last 5 years. Most obligations came from the U.S. Coast Guard and the Department of the Navy, with nearly all spending classified under Ship Building and Repairing.
Federal Contractor
BOLLINGER SHIPYARDS LOCKPORT, L.L.C. Federal Contract Obligations (Last 5 Years)
Federal procurement overview for BOLLINGER SHIPYARDS LOCKPORT, L.L.C. covering $1.79 billion in obligated awards across 338 actions in the last 5 years.
Totals reflect the selected 5-year analysis window and may include contract actions recorded under multiple agencies and NAICS codes.
About BOLLINGER SHIPYARDS LOCKPORT, L.L.C. federal contract activity
BOLLINGER SHIPYARDS LOCKPORT, L.L.C. recorded 338 obligations totaling $1.79 billion over the last 5 years, with an average award value of $5.30 million. The vendor’s activity is concentrated in shipbuilding-related procurement, indicating a high-value industrial contracting profile tied to maritime platforms and repair work.
Agency mix and customer concentration
The U.S. Coast Guard accounts for the majority of obligations at $1.53 billion across 187 awards, making it the clear primary customer. The Department of the Navy is the secondary buyer with $262.43 million across 151 awards, suggesting a materially smaller but still significant defense maritime relationship.
Industry profile based on NAICS activity
NAICS 336611, Ship Building and Repairing, dominates the vendor’s portfolio with $1.79 billion across 323 awards, representing essentially all tracked obligations. NAICS 336612, Boat Building, contributes a much smaller $3.44 million across 14 awards, while NAICS 334511 appears only once at $1,000, indicating minimal diversification outside core ship construction and repair work.
Annual contract trend over the analysis window
Annual obligations were uneven across the period, with a pronounced spike in 2025 at $1.12 billion across 54 awards. Prior years were substantially lower, ranging from $34.53 million in 2024 to $310.85 million in 2022, with 2023 and 2021 also below $300 million; the pattern indicates episodic large-value awards rather than a steady annual run rate.
How to interpret this page
This summary is based on FPDS-observed obligations for the last 5 years and uses total obligated dollars, award counts, and derived averages from the provided dataset. Agency, NAICS, and annual figures reflect the listed top categories and are reported as recorded without extrapolation beyond the supplied data.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '64513'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 7008 | U.S. COAST GUARD | 1,529,602,615.39 | 1.53 billion | 187 |
| 1700 | DEPT OF THE NAVY | 262,432,332.82 | 262.43 million | 151 |
Insight
Over the last 5 years, BOLLINGER SHIPYARDS LOCKPORT, L.L.C. received $1.79 billion across 338 awards, with an average award value of $5.30 million. Obligations are highly concentrated in the U.S. Coast Guard, which accounts for $1.53 billion and 187 awards, or roughly 85% of total obligated dollars. The Department of the Navy is the secondary customer, with $262.43 million across 151 awards, indicating a materially smaller but still significant share of the vendor’s federal business.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '64513'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 1,788,597,214.21 | 1.79 billion | 323 |
| 336612 | BOAT BUILDING | 3,436,734.00 | 3.44 million | 14 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 1,000.00 | 1.00 thousand | 1 |
Insight
BOLLINGER SHIPYARDS LOCKPORT, L.L.C. is highly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for $1.79 billion of the $1.79 billion obligated over the last 5 years and 323 of 338 awards. NAICS 336612, Boat Building, is a distant second at $3.44 million across 14 awards, while NAICS 334511 appears only once for $1,000. This profile indicates a narrow procurement mix centered on shipbuilding and repair, with minimal activity outside the primary NAICS.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '64513'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 1,118,069,078.61 | 1.12 billion | 54 |
| 2024 | 34,531,971.77 | 34.53 million | 38 |
| 2023 | 70,831,893.64 | 70.83 million | 101 |
| 2022 | 310,846,788.99 | 310.85 million | 91 |
| 2021 | 257,755,215.20 | 257.76 million | 54 |
Insight
Over the last 5 years, BOLLINGER SHIPYARDS LOCKPORT, L.L.C. obligated $1.79 billion across 338 awards, with an average award value of $5.30 million. Obligations are highly concentrated in 2025, which accounts for $1.12 billion, or about 62% of the 5-year total, despite 54 awards. Earlier years were materially lower and more variable, ranging from $34.53 million in 2024 to $310.85 million in 2022, indicating a pronounced recent spike in funding volume.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.
Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.